Intro

Issue

In order to simulate sylviculture with TROLL we need to implement a new sylviculture module inside TROLL model code. A first litterature review was completed by an interview with Laurent Descroix of the Office Nationale des ForĂŞts. We discovered that rotten trees were not random and seemed to depend both on tree species and diameter. This document presents modelling of relation between rotten trees and their species and diameter.

In fact we have two different questions:

  • Predict if a tree will be probed as rotten (models M, see rotten 2)
  • Predict how much of tree volume is rotten (models N, see rotten 3)
Table 2: Models summary.
N Model
\(N\) \(V_f \sim \mathcal{logN} (log[(\beta*dbh^2)*(1 - Pr*\rho)], \sigma)\)
\(N_{p}\) \(V_f \sim \mathcal{logN} (log[((\beta + \beta_p)*dbh^2)*(1 - Pr*\rho)], \sigma)\)
\(N_{s}\) \(V_f \sim \mathcal{logN} (log[((\beta + \beta_s)*dbh^2)*(1 - Pr*\rho)], \sigma)\)
\(N_{p,s}\) \(V_f \sim \mathcal{logN} (log[((\beta + \beta_p + \beta_s)*dbh^2)*(1 - Pr*\rho)], \sigma)\)

We tested models N detailed in following tabs to find the better trade-off between:

  1. Complexity (and number of parameters)
  2. Convergence
  3. Likelihood

Results are shown for each models in each model tabs and summarized in Conclusion tab.

Graph

Trees estimated dbh and final softwood product.

\(N\)

Model

\(N\): \(V_f \sim \mathcal{logN} (log[(\beta*dbh^2)*(1 - Pr*\rho)], \sigma)\)

Model Predictions.

Parameters markov chains. Light grey area represents warmup iterations.

Convergence

\(P_{rotten} = (15.411*dbh^2)*[1-Pr*0.191]\)

Parameters posterior ditribution. Light blue area represents 80% confidence interval, and vertical blue line the mean.

Parameters pairs plot. Parameters density distribution, pairs plot and Pearson’s coefficient of correlation.

\(N_{p}\)

Model

\(N_{p}\): \(V_f \sim \mathcal{logN} (log[((\beta + \beta_p)*dbh^2)*(1 - Pr*\rho)], \sigma)\)

Model Predictions.

Parameters markov chains. Light grey area represents warmup iterations.

Convergence

\(P_{rotten} = (15.468*dbh^2)*[1-Pr*0.222]\)

Parameters posterior ditribution. Light blue area represents 80% confidence interval, and vertical blue line the mean.

Parameters pairs plot. Parameters density distribution, pairs plot and Pearson’s coefficient of correlation.

\(N_{s}\)

Model

\(N_{s}\): \(V_f \sim \mathcal{logN} (log[((\beta + \beta_s)*dbh^2)*(1 - Pr*\rho)], \sigma)\)

Model Predictions.

Parameters markov chains. Light grey area represents warmup iterations.

Convergence

\(P_{rotten} = (14.902*dbh^2)*[1-Pr*0.181]\)

Parameters posterior ditribution. Light blue area represents 80% confidence interval, and vertical blue line the mean.

Parameters pairs plot. Parameters density distribution, pairs plot and Pearson’s coefficient of correlation.

\(N_{p,s}\)

Model

\(N_{p,s}\): \(V_f \sim \mathcal{logN} (log[((\beta + \beta_p + \beta_s)*dbh^2)*(1 - Pr*\rho)], \sigma)\)

Model Predictions.

Parameters markov chains. Light grey area represents warmup iterations.

Convergence

\(P_{rotten} = (14.322*dbh^2 + 1)*[1-Pr*0.187]\)

Parameters posterior ditribution. Light blue area represents 80% confidence interval, and vertical blue line the mean.

Parameters pairs plot. Parameters density distribution, pairs plot and Pearson’s coefficient of correlation.

Conclusion 1

Adding random effect for plot and/or species (\(\beta_p\), \(\beta_s\)) increased likelihood and decreased model variance (\(\sigma\)). Consequently best model is \(N_{p,s}\). Stille we can try to improve this model by adding random effect for species and/or plot to the hyperparameter \(\rho\).

Table 3: Models summary.
L Model
\(L\) \(\rho \sim \mathcal{logN} (log[\theta_1 + \theta2*dbh^2], \sigma_2)\)
\(L_{p}\) \(\rho \sim \mathcal{logN} (log[\theta_1 + \theta_p + \theta2*dbh^2], \sigma_2)\)
\(L_{s}\) \(\rho \sim \mathcal{logN} (log[\theta_1 + \theta_s + \theta2*dbh^2], \sigma_2)\)
\(L_{p,s}\) \(\rho \sim \mathcal{logN} (log[\theta_1 + \theta_p + \theta_s + \theta2*dbh^2], \sigma_2)\)

\(L\)

Model

NA: NA

Model Predictions.

Parameters markov chains. Light grey area represents warmup iterations.

Convergence

\(P_{rotten} = (14.236*dbh^2)*[1-Pr*0.308]\)

Parameters posterior ditribution. Light blue area represents 80% confidence interval, and vertical blue line the mean.

Parameters pairs plot. Parameters density distribution, pairs plot and Pearson’s coefficient of correlation.

References